Replace tabs with spaces in touch-events/ (#8477) Use 4 spaces, as that was used in some nearby code, and also fix a few bits of nearby indentation that were just slightly wrong.
diff --git a/touch-events/multi-touch-interactions-manual.html b/touch-events/multi-touch-interactions-manual.html index e9835d9..45e53af 100644 --- a/touch-events/multi-touch-interactions-manual.html +++ b/touch-events/multi-touch-interactions-manual.html
@@ -1,7 +1,7 @@ <!DOCTYPE HTML> <html> <!-- - Test cases for Touch Events v1 Recommendation + Test cases for Touch Events v1 Recommendation http://www.w3.org/TR/touch-events/ These tests are based on Mozilla-Nokia-Google's single-touch @@ -21,29 +21,29 @@ <script src="/resources/testharnessreport.js"></script> <script src="multi-touch-interactions.js"></script> <style> - div { - margin: 0em; - padding: 1.5em; - } - #target0 { - background: yellow; - border: 1px solid orange; - } - #target1 { - background: lightblue; - border: 1px solid blue; - } + div { + margin: 0em; + padding: 1.5em; + } + #target0 { + background: yellow; + border: 1px solid orange; + } + #target1 { + background: lightblue; + border: 1px solid blue; + } </style> </head> <body onload="run()"> - <h1>Touch Events: Multi-Touch Interaction Test</h1> - <div id="target0"> - Touch this box with one finger, then another one... - </div> - <div id="target1"> - ...then drag to this box, then touch with a third finger, and lift all your fingers. - </div> - <div id="debug"></div> - <div id="log"></div> + <h1>Touch Events: Multi-Touch Interaction Test</h1> + <div id="target0"> + Touch this box with one finger, then another one... + </div> + <div id="target1"> + ...then drag to this box, then touch with a third finger, and lift all your fingers. + </div> + <div id="debug"></div> + <div id="log"></div> </body> </html>